home *** CD-ROM | disk | FTP | other *** search
- from PSPApp import *
-
- def ScriptProperties():
- return {
- 'Author': u'Corel Corporation',
- 'Copyright': u'Copyright (c) 2004 Corel Corporation All rights reserved.',
- 'Description': u'',
- 'Host': u'Paint Shop Pro 9',
- 'Host Version': u'9.00'
- }
-
- def Preset_CrayonTool():
- return {
- 'Size': 4,
- 'Shape': App.Constants.ArtMediaBrushShape.Rectangular,
- 'Thickness': 26,
- 'Rotation': 0,
- 'HeadTracking': App.Constants.ArtMediaBrushRotation.RotateAlongPath,
- 'Material': None,
- 'Trace': False,
- 'GeneralSettings': {
- 'ExecutionMode': App.Constants.ExecutionMode.Default,
- 'RandomSeed': None,
- 'AutoActionMode': App.Constants.AutoActionMode.Match
- }
- }
-
- def Do(Environment):
- # CrayonTool_LOCALIZED
- App.Do( Environment, 'CrayonTool', Preset_CrayonTool())
-
-